home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Help / Examples / Prgrsbar / PG1P.DPR < prev    next >
Encoding:
Text File  |  2001-05-22  |  201 b   |  15 lines

  1. program Pg1p;
  2.  
  3. uses
  4.   Forms,
  5.   Pg1 in 'Pg1.pas' {Form1},
  6.   Pg2 in 'Pg2.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.